home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 49 / PCPP49a.iso / editors / sofsdk / SoF SDK.msi / _8E8417B297314BA0B005359F5BFD364E < prev    next >
Encoding:
Text File  |  2000-03-27  |  1.0 KB  |  29 lines

  1. #include "../common/header.ds"
  2. output "p:/base/ds/tsr1"
  3.  
  4.  
  5.  
  6. local entity runguy1 // the guy who runs by
  7. local entity waveguy1 // the guy waving at the end of the hallway
  8. local entity afterguy // a guy who will spawn in the token room
  9. local entity behindwaver // the guy who spawns behind the guy waving
  10. local int sig1
  11. local int sig2
  12.  
  13. runguy1 = find entity with targetname "runguy1"
  14. waveguy1 = find entity with targetname "waveguy1"
  15. afterguy = find entity with targetname "afterguy"
  16. behindwaver = find entity with targetname "behindwaver"
  17.  
  18. use entity runguy1 // spawns the guy running by
  19. use entity waveguy1 //spawns the guy at the end of the hall
  20.  
  21.  
  22. use entity behindwaver // spawns the guy in the waitingroom
  23. use entity afterguy // spawns another guy in the token room
  24.  
  25. animate entity runguy1 performing action SCRIPT_RELEASE
  26. animate entity waveguy1 performing action SCRIPT_RELEASE
  27. animate entity afterguy performing action SCRIPT_RELEASE
  28. animate entity behindwaver performing action SCRIPT_RELEASE
  29.